home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 (Alt) / Vol 132.iso / games / 3d_hyper / 3d_hyper.dcr / Scripts_20_CourseText Behavior.ls < prev    next >
Encoding:
Text File  |  2011-06-09  |  252 b   |  10 lines

  1. global gRacers, gTimeInfo
  2.  
  3. on beginSprite me
  4.   theText = EMPTY
  5.   repeat with i = 1 to gTimeInfo.count
  6.     theText = theText && "Track" && i && "Time:" && getPrintTime(gTimeInfo[i]) & RETURN
  7.   end repeat
  8.   sprite(me.spriteNum).member.text = theText
  9. end
  10.